From 9956421b1dc549a65492e1c9583f4e049b8b0601 Mon Sep 17 00:00:00 2001 From: "emellor@leeni.uk.xensource.com" Date: Sat, 11 Mar 2006 11:19:11 +0100 Subject: [PATCH] Trivial fix to bind implementation. Signed-off-by: Ewan Mellor --- tools/python/xen/web/unix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/xen/web/unix.py b/tools/python/xen/web/unix.py index c5df4b5ddd..8ec715c12f 100644 --- a/tools/python/xen/web/unix.py +++ b/tools/python/xen/web/unix.py @@ -39,7 +39,7 @@ created such that only the current user may access it.""" os.makedirs(parent, stat.S_IRWXU) sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) - sock.bind(self.path) + sock.bind(path) return sock -- 2.30.2